home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-12-20 | 4.2 KB | 130 lines | [TEXT/ALFA] |
- ## -*-Tcl-*- (install)
- # ###################################################################
- # Alpha - new Tcl folder configuration
- #
- # FILE: "recentFiles.tcl"
- # created: 21/9/97 {9:14:38 pm}
- # last update: 20/12/1998 {11:20:19 pm}
- #
- # Reorganisation carried out by Vince Darley with much help from Tom
- # Fetherston, Johan Linde and suggestions from the Alpha-D mailing list.
- # Alpha is shareware; please register with the author using the register
- # button in the about box.
- #
- # original author probably Pete Keleher. Vince added a bunch of
- # code to work-around some Alpha-menu problems, and made it a
- # package.
- #
- # Version 0.2 builds the menu about a zillion times faster than
- # the original which built the menu once for every item at
- # startup! Also removed two unnecessary procs, since that stuff
- # can be done elsewhere automatically.
- # ###################################################################
- ##
-
- alpha::extension recentFilesMenu 0.2.6 {
- namespace eval recent {}
- ensureset recent::Files ""
- hook::register saveasHook recent::push
- hook::register openHook recent::push
- menu::buildProc recent recent::makeMenu
- menu::insert File submenu 2 recent
- lappend modifiedVars recent::Files
- # declare the fileset
- set "gfileSetsType(Recent Files)" "procedural"
- set "gfileSets(Recent Files)" recent::listFiles
- lunion filesetsNotInMenu "Recent Files"
- } help {Adds a menu of recent files to the files menu, and a recent files fileset}
-
- newPref variable numberOfRecentFiles 15
- ##
- # -------------------------------------------------------------------------
- #
- # "recent::push" --
- #
- # Works with files whose name contained '[' or ']' which didn't before.
- # Doesn't add any file which fails 'file exists' to the menu.
- # -------------------------------------------------------------------------
- ##
- proc recent::push {name {name2 ""}} {
- if {$name2 != ""} { set name $name2 }
- global recent::Files numberOfRecentFiles file::separator
-
- regsub { <[0-9]+>$} $name {} name
- if {![file exists $name]} { return }
- if {[info tclversion] < 8.0} {
- regsub -all {\\([][])} $name {\1} name
- if {[info exists recent::Files] \
- && ([set ind [lsearch -regexp ${recent::Files} "${file::separator}[quote::Regfind [file tail $name]]…?$"]] >= 0)} {
- set recent::Files [lreplace ${recent::Files} $ind $ind]
- lappend recent::Files $name
- return
- }
- } else {
- if {[info exists recent::Files] \
- && ([set ind [lsearch -exact ${recent::Files} $name]] >= 0)} {
- set recent::Files [lreplace ${recent::Files} $ind $ind]
- lappend recent::Files $name
- return
- }
- }
-
- lappend recent::Files $name
- if {[llength ${recent::Files}] > $numberOfRecentFiles} {
- set recent::Files [lrange ${recent::Files} 1 end]
- }
- recent::makeMenu
- }
-
- proc recent::makeMenu {} {
- global recent::Files
- set tails {}
- foreach t ${recent::Files} {
- lappend tails [file tail $t]
- }
- Menu -m -c -n recent -p recent::menuProc \
- [concat [lsort -ignore $tails] [list "(-" "Reset List"]]
- set enable [expr [llength ${recent::Files}] ? 1 : 0]
- enableMenuItem File recent $enable
- }
-
- ##
- # -------------------------------------------------------------------------
- #
- # "recent::menuProc" --
- #
- # Works with menu items which contain '[', ']' and '…' which didn't work
- # before.
- # -------------------------------------------------------------------------
- ##
- proc recent::menuProc {menu name} {
- global recent::Files file::separator
-
- if {$name == "Reset List"} {
- set recent::Files {}
- Menu -m -n recent -p recent::menuProc {}
- recent::makeMenu
- } else {
- if {[set ind [lsearch -regexp ${recent::Files} "${file::separator}[quote::Regfind $name]…?$"]] >= 0} {
- edit [lindex ${recent::Files} $ind]
- } else {
- alpha::errorAlert "Couldn't find a file '$name'. Weird!"
- }
- }
- }
-
- ##
- # -------------------------------------------------------------------------
- #
- # "recent::listFiles" --
- #
- # Used to retrieve the list of files in the 'recent files' fileset
- # -------------------------------------------------------------------------
- ##
- proc recent::listFiles {} {
- global recent::Files
- return ${recent::Files}
- }
-
-
-